JMFrameKeyRelease
Dispatches a key-up event to a frame.
OSStatus JMFrameKeyRelease (JMFrameRef frame, char asciiChar, char keyCode, short modifiers);
frame
- The frame in which the key up event occurred.
asciiChar
- The ASCII character being typed.
keyCode
- The machine key code being typed.
modifiers
- Any keyboard modifiers from the
EventRecord
data structure. You can determine the ASCII character (and corresponding machine key code) fromEventRecord.message
. For more information aboutEventRecord
, see Inside Macintosh: Macintosh Toolbox Essentials.- function result
- A result code. See "JManager Result Codes" (page 108) for a list of result codes that JManager may return in this field.
DISCUSSION
The client application must keep track of the currently active frame.SEE ALSO
"Keyboard Events" (page 27).The
JMFrameKey
function (page 86).